home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr53 / pctv4n_1.zip / REQUEST2.H < prev    next >
Text File  |  1993-06-11  |  620b  |  28 lines

  1. /**************************************************
  2. * FILE NAME: request.h   TITLE:  SQL request
  3. *
  4. * AUTHOR: Ken North     Resource Group, Inc.    
  5. *                       2604B El Camino Real, #351
  6. * copyright(c)1992      Carlsbad, CA 92008
  7. ****************************************************
  8. * SYNOPSIS:
  9. *      information maintained per statement (request)
  10. ***************************************************/
  11.  
  12. #ifndef __REQUEST_H
  13. #define __REQUEST_H
  14.  
  15. typedef struct SQLRequest
  16. {
  17.     int          Status;
  18.     char    Statement[MAXSQL];
  19.     char     far *stptr;
  20.     HSTMT    hstmt;
  21.     HCUR    CursorID;
  22.  
  23. } * REQUEST;
  24.  
  25.  
  26. #endif
  27.  
  28.